home *** CD-ROM | disk | FTP | other *** search
/ CDV Software Presents (USA) / CDV Software Presents (USA).bin / CDV.exe / CDV.dxr / 00001.ls next >
Encoding:
Text File  |  2003-03-31  |  793 b   |  27 lines

  1. on prepareMovie
  2.   puppetTempo(30)
  3.   meldungzeigen = 0
  4.   if not (the quickTimePresent) then
  5.     qtmeldung = "QuickTime Player is not installed on your computer. Please install the QuickTime Player from this CD-ROM." & RETURN
  6.     meldungzeigen = 1
  7.   end if
  8.   if QuickTimeVersion() < 6 then
  9.     qtmeldung = "You require an updated version of QuickTime Player. Please install the newest version of QuickTime Player from this CD-ROM" & RETURN
  10.     meldungzeigen = 1
  11.   end if
  12.   if meldungzeigen then
  13.     meldung = qtmeldung
  14.     alert(meldung)
  15.     quit()
  16.   end if
  17.   if the runMode = "Author" then
  18.     authormeldung = "Sie spielen den Film im Authoring-Modus ab."
  19.     meldung = qtmeldung & authormeldung
  20.     put meldung
  21.   end if
  22. end
  23.  
  24. on startMovie
  25.   append(the searchPaths, the moviePath & "data")
  26. end
  27.